home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / asm / mach-bigsmp / mach_apic.h next >
C/C++ Source or Header  |  2005-10-13  |  4KB  |  168 lines

  1. #ifndef __ASM_MACH_APIC_H
  2. #define __ASM_MACH_APIC_H
  3. #include <asm/smp.h>
  4.  
  5. #define SEQUENTIAL_APICID
  6. #ifdef SEQUENTIAL_APICID
  7. #define xapic_phys_to_log_apicid(phys_apic) ( (1ul << ((phys_apic) & 0x3)) |\
  8.         ((phys_apic<<2) & (~0xf)) )
  9. #elif CLUSTERED_APICID
  10. #define xapic_phys_to_log_apicid(phys_apic) ( (1ul << ((phys_apic) & 0x3)) |\
  11.         ((phys_apic) & (~0xf)) )
  12. #endif
  13.  
  14. #define NO_BALANCE_IRQ (1)
  15. #define esr_disable (1)
  16.  
  17. #define NO_IOAPIC_CHECK (0)
  18.  
  19. static inline int apic_id_registered(void)
  20. {
  21.     return (1);
  22. }
  23.  
  24. #define APIC_DFR_VALUE    (APIC_DFR_CLUSTER)
  25. /* Round robin the irqs amoung the online cpus */
  26. static inline cpumask_t target_cpus(void)
  27.     static unsigned long cpu = NR_CPUS;
  28.     do {
  29.         if (cpu >= NR_CPUS)
  30.             cpu = first_cpu(cpu_online_map);
  31.         else
  32.             cpu = next_cpu(cpu, cpu_online_map);
  33.     } while (cpu >= NR_CPUS);
  34.     return cpumask_of_cpu(cpu);
  35. }
  36. #define TARGET_CPUS    (target_cpus())
  37.  
  38. #define INT_DELIVERY_MODE dest_Fixed
  39. #define INT_DEST_MODE 1     /* logical delivery broadcast to all procs */
  40.  
  41. static inline unsigned long check_apicid_used(physid_mask_t bitmap, int apicid)
  42. {
  43.     return 0;
  44. }
  45.  
  46. /* we don't use the phys_cpu_present_map to indicate apicid presence */
  47. static inline unsigned long check_apicid_present(int bit) 
  48. {
  49.     return 1;
  50. }
  51.  
  52. #define apicid_cluster(apicid) (apicid & 0xF0)
  53.  
  54. static inline unsigned long calculate_ldr(unsigned long old)
  55. {
  56.     unsigned long id;
  57.     id = xapic_phys_to_log_apicid(hard_smp_processor_id());
  58.     return ((old & ~APIC_LDR_MASK) | SET_APIC_LOGICAL_ID(id));
  59. }
  60.  
  61. /*
  62.  * Set up the logical destination ID.
  63.  *
  64.  * Intel recommends to set DFR, LDR and TPR before enabling
  65.  * an APIC.  See e.g. "AP-388 82489DX User's Manual" (Intel
  66.  * document number 292116).  So here it goes...
  67.  */
  68. static inline void init_apic_ldr(void)
  69. {
  70.     unsigned long val;
  71.  
  72.     apic_write_around(APIC_DFR, APIC_DFR_VALUE);
  73.     val = apic_read(APIC_LDR) & ~APIC_LDR_MASK;
  74.     val = calculate_ldr(val);
  75.     apic_write_around(APIC_LDR, val);
  76. }
  77.  
  78. static inline void clustered_apic_check(void)
  79. {
  80.     printk("Enabling APIC mode:  %s.  Using %d I/O APICs\n",
  81.         "Cluster", nr_ioapics);
  82. }
  83.  
  84. static inline int multi_timer_check(int apic, int irq)
  85. {
  86.     return 0;
  87. }
  88.  
  89. static inline int apicid_to_node(int logical_apicid)
  90. {
  91.     return 0;
  92. }
  93.  
  94. extern u8 bios_cpu_apicid[];
  95.  
  96. static inline int cpu_present_to_apicid(int mps_cpu)
  97. {
  98.     if (mps_cpu < NR_CPUS)
  99.         return (int)bios_cpu_apicid[mps_cpu];
  100.     else
  101.         return BAD_APICID;
  102. }
  103.  
  104. static inline physid_mask_t apicid_to_cpu_present(int phys_apicid)
  105. {
  106.     return physid_mask_of_physid(phys_apicid);
  107. }
  108.  
  109. extern u8 cpu_2_logical_apicid[];
  110. /* Mapping from cpu number to logical apicid */
  111. static inline int cpu_to_logical_apicid(int cpu)
  112. {
  113.        if (cpu >= NR_CPUS)
  114.            return BAD_APICID;
  115.        return (int)cpu_2_logical_apicid[cpu];
  116.  }
  117.  
  118. static inline int mpc_apic_id(struct mpc_config_processor *m,
  119.             struct mpc_config_translation *translation_record)
  120. {
  121.     printk("Processor #%d %ld:%ld APIC version %d\n",
  122.             m->mpc_apicid,
  123.             (m->mpc_cpufeature & CPU_FAMILY_MASK) >> 8,
  124.             (m->mpc_cpufeature & CPU_MODEL_MASK) >> 4,
  125.             m->mpc_apicver);
  126.     return m->mpc_apicid;
  127. }
  128.  
  129. static inline physid_mask_t ioapic_phys_id_map(physid_mask_t phys_map)
  130. {
  131.     /* For clustered we don't have a good way to do this yet - hack */
  132.     return physids_promote(0xFUL);
  133. }
  134.  
  135. #define WAKE_SECONDARY_VIA_INIT
  136.  
  137. static inline void setup_portio_remap(void)
  138. {
  139. }
  140.  
  141. static inline void enable_apic_mode(void)
  142. {
  143. }
  144.  
  145. static inline int check_phys_apicid_present(int boot_cpu_physical_apicid)
  146. {
  147.     return (1);
  148. }
  149.  
  150. /* As we are using single CPU as destination, pick only one CPU here */
  151. static inline unsigned int cpu_mask_to_apicid(cpumask_t cpumask)
  152. {
  153.     int cpu;
  154.     int apicid;    
  155.  
  156.     cpu = first_cpu(cpumask);
  157.     apicid = cpu_to_logical_apicid(cpu);
  158.     return apicid;
  159. }
  160.  
  161. static inline u32 phys_pkg_id(u32 cpuid_apic, int index_msb)
  162. {
  163.     return cpuid_apic >> index_msb;
  164. }
  165.  
  166. #endif /* __ASM_MACH_APIC_H */
  167.